home *** CD-ROM | disk | FTP | other *** search
- #include "CTalk.h"
- main()
- {
- CTalk* human;
-
- human=new(CTalk);
- human->ITalk();
- human->SetRate(150);
- human->SetPitch(100);
- human->Say("\pHello, you little person");
- human->SetRate(50);
- human->Say("\pHello, you little person");
- human->SetRate(150);
- human->SetPitch(200);
- human->Say("\pHello, you little person");
- human->SetPitch(80);
- human->Say("\pHello, you little person");
- human->Dispose();
- }